-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
40 lines (33 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
30
31
32
33
34
35
36
37
38
39
40
import os
import numpy as np
from setuptools import setup
__version__ = '2.3.6'
__package__ = 'maxlike'
here = os.path.dirname(os.path.abspath(__file__))
with open(os.path.join(here, "requirements.txt")) as f:
required = f.read().splitlines()
with open(os.path.join(here, "README.md")) as f:
__doc__ = f.read()
setup(
name=__package__,
version=__version__,
author='joao ceia',
author_email='[email protected]',
packages=['maxlike', 'maxlike.tensor', 'maxlike.func'],
url='https://github.com/jpceia/maxlike',
license='nolicense',
description="Python package to model count data",
long_description=__doc__,
long_description_content_type="text/markdown",
install_requires=required,
tests_require=["nose", "coverage"],
test_suite="nose.collector",
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Mathematics',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
]
)