-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 924 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 924 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="dyban",
version="0.1",
author="Carlos Rodolfo Huerta Santiago",
author_email="carlos.huertaso@udlap.mx",
description="A python package that implements dynamic bayesian networks models on time series data",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/charx7/DynamicBayesianNetworks",
#packages=setuptools.find_packages(),
packages=setuptools.find_packages('src'), # Alternative to tell to find directoly on src
package_dir={'': 'src'},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
'numpy>=1.16.4',
'tqdm>=4.32.1',
'scipy>=1.3.0'
]
)