-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (32 loc) · 956 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# setup.py
# -*- coding: utf-8 -*-
from setuptools import setup
from distutils.util import convert_path
def readme():
with open('README.rst') as f:
return f.read()
info = {}
with open(convert_path('grm/__info__.py')) as f:
exec(f.read(), info)
setup(name=info['__nm'],
version=info['__version__'],
description='GitRoom Manager: A command line GitHub classroom manager',
long_description=readme(),
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
keywords='github organization classroom manager',
url=info['__rp'],
download_url=info['__dl'],
author=info['__au'],
author_email=info['__em'],
license='MIT',
packages=['grm'],
install_requires=[
'pandas',
'requests',
],
scripts=['bin/gitroom'],
zip_safe=False)