forked from gerbaudo/fbu
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (32 loc) · 951 Bytes
/
setup.py
File metadata and controls
37 lines (32 loc) · 951 Bytes
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
from setuptools import setup
DISTNAME = 'fbu'
DESCRIPTION = "PyFBU"
#VERSION = '0.0.2'
VERSION = '0.1.2'
AUTHOR = 'Davide Gerbaudo, Clement Helsens and Francesco Rubbo'
AUTHOR_EMAIL = 'clement.helsens@gmail.com'
URL = 'https://github.com/pyFBU/fbu'
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Physics',
'Operating System :: OS Independent',
]
required = ['pymc3']
setup(
name=DISTNAME,
version=VERSION,
packages=['fbu','fbu.tests'],
license='LICENSE.txt',
long_description=open('README.rst','rt').read(),
url=URL,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
classifiers=classifiers,
install_requires=required
)
##to upload package
## python setup.py sdist
## twine upload dist/*