forked from learn-co-curriculum/dscreate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (27 loc) · 842 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
from setuptools import setup, find_packages
name = u'dscreate'
version = '0.2.01'
description = 'Flatiron School Data Science Tools'
setup_args = dict(
name=name,
version=version,
description=description,
author='Joel Collins',
author_email='[email protected]',
license='MIT',
url='http://github.com/learn-co-curriculum/dscreate',
packages=find_packages(),
entry_points={
'console_scripts': ['ds=dscreate.apps.DsCreateApp:main']
},
install_requires=['argparse==1.1',
'pyperclip==1.8.2',
'traitlets==5.1.0',
'nbgrader==0.6.1',
'nbformat==5.1.3',
'nbconvert==6.2.0',
'GitPython==3.1.24',
'appdirs==1.4.4'],
)
if __name__ == "__main__":
setup(**setup_args)