-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (30 loc) · 1.04 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
from setuptools import setup
with open('README.txt') as file:
long_description = file.read()
#^
with open('requirements.txt') as fp:
install_requires = fp.read()
#^
setup(
name ='broja2pid',
version='1.0.1',
description='A robust estimator for the bivariate partial information decomposition measure BROJA',
url='https://github.com/Abzinger/BROJA_2PID',
author='Abdullah Makkeh and Dirk Oliver Theis',
author_email='[email protected]',
license='Apache License 2.0',
packages=['broja2pid'],
install_requires=install_requires,
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"Operating System :: POSIX :: Linux",
"Intended Audience :: Science/Research",
"Environment :: Console",
"Environment :: Other Environment",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Information Analysis",
],
)