-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
38 lines (34 loc) · 1.41 KB
/
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
37
38
#!/usr/bin/env python
from setuptools import setup, find_packages
import os
module_dir = os.path.dirname(os.path.abspath(__file__))
reqs_file = os.path.join(module_dir, "requirements.txt")
with open(reqs_file, "r") as f:
reqs_raw = f.read()
reqs_list = [r.replace("==", ">=") for r in reqs_raw.split("\n")]
if __name__ == "__main__":
setup(
name='figrecipes',
version='0.0.7',
description='figrecipes is a tool for quickly creating interactive plots for data science.',
long_description=open(os.path.join(module_dir, 'README.md')).read(),
url='https://github.com/hackingmaterials/figrecipes',
author='Anubhav Jain',
author_email='[email protected]',
license='modified BSD',
packages=find_packages(),
package_data={},
zip_safe=False,
install_requires=reqs_list,
extras_require={},
classifiers=['Programming Language :: Python :: 2.7',
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Intended Audience :: System Administrators',
'Intended Audience :: Information Technology',
'Operating System :: OS Independent',
'Topic :: Other/Nonlisted Topic',
'Topic :: Scientific/Engineering'],
test_suite='figrecipes',
scripts=[]
)