-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
39 lines (33 loc) · 941 Bytes
/
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
from setuptools import setup, find_packages
DESCRIPTION = 'SER Model'
with open('README.md') as f:
LONG_DESCRIPTION = f.read()
base_packages = [
"numpy>=1.20.3",
"numba==0.54.1",
"scipy>=1.7.0",
]
test_packages = [
"pytest>=4.0.2",
"mypy>=0.770",
]
setup(
name='ser',
version='0.0.6',
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
author='Fabrizio Damicelli',
author_email='fabridamicelli@gmail.com',
url="https://github.com/fabridamicelli/ser",
packages=find_packages(exclude=['notebooks', 'docs']),
classifiers=[
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
],
python_requires='>=3.7',
install_requires=base_packages,
include_package_data=True
)