-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (31 loc) · 1.28 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
from setuptools import setup, find_packages
#print(find_packages())
#required_packages = []
#with open('requirements.txt') as f:
# required_packages = f.read().splitlines()
#required_packages += ['corner.py @ https://github.com/jiwoncpark/corner.py/archive/master.zip']
#print(required_packages)
setup(
name='n2j',
version='v0.10',
author='Ji Won Park, Rodrigo Castellon',
author_email='[email protected], [email protected]',
packages=find_packages(),
license='LICENSE.md',
description='Methods for inference of external convergence',
long_description=open("README.rst").read(),
long_description_content_type='text/markdown',
url='https://github.com/jiwoncpark/node-to-joy',
#install_requires=required_packages,
#dependency_links=['http://github.com/jiwoncpark/corner.py/tarball/master#egg=corner_jiwoncpark'],
include_package_data=True,
test_suite='nose.collector',
tests_require=['nose'],
classifiers=['Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python'],
keywords='physics'
)