-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathsetup.py
41 lines (34 loc) · 1007 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
40
41
from setuptools import setup, find_packages
DESCRIPTION = 'Kuramoto model on graphs'
with open('README.md', encoding='utf-8') as f:
LONG_DESCRIPTION = f.read()
base_packages = [
"numpy>=1.16.0",
"scipy",
"matplotlib",
]
test_packages = [
"pytest",
"mypy",
]
setup(
name='kuramoto',
version='0.3.0',
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
author='Fabrizio Damicelli',
author_email='[email protected]',
url="https://github.com/fabridamicelli/kuramoto",
packages=find_packages(exclude=['notebooks', 'docs']),
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
],
python_requires='>=3.6',
install_requires=base_packages,
include_package_data=True
)