-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
49 lines (46 loc) · 1.45 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
41
42
43
44
45
46
47
48
49
from setuptools import find_packages, setup
with open("requirements.txt", "r") as f:
reqs = f.read().splitlines()
with open("README.md", "r") as f:
readme = f.read()
setup(
name="pysimlink",
version="1.2.1",
author="Landon Harris",
author_email="[email protected]",
description="Compile, run, and interact with Simulink models natively in Python!",
long_description=readme,
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=reqs,
extras_require={
"dev": [
"pylint",
"black",
"sphinx_rtd_theme",
"sphinx",
"tqdm",
"sphinx-toolbox",
"sphinx-hoverxref",
"readthedocs-sphinx-search",
]
},
include_package_data=True,
python_requires=">=3.6",
keywords=["Simulink"],
license="GPLv3",
classifiers=[
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Code Generators",
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
],
url="https://github.com/lharri73/PySimlink",
project_urls={
"Documentation": "https://lharri73.github.io/PySimlink/",
"Source": "https://github.com/lharri73/PySimlink",
},
)