-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
29 lines (28 loc) · 1.11 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
from setuptools import setup, find_packages
#print(reqs)
setup(
name='pybaobab',
version='0.1.1',
author='Ji Won Park',
author_email='jiwon.christine.park@gmail.com',
packages=find_packages(),
license='LICENSE.md',
description='Data generator for hierarchically modeling strongly-lensed systems with Bayesian neural networks',
long_description=open("README.rst").read(),
long_description_content_type='text/markdown',
url='https://github.com/jiwoncpark/baobab',
#install_requires=required_packages,
#dependency_links=[
#'http://github.com/sibirrer/fastell4py/tarball/master#egg=fastell4py',],
include_package_data=True,
entry_points={
'console_scripts': ['generate=baobab.generate:main', 'to_hdf5=baobab.to_hdf5:main'],
},
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'
)