-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
42 lines (39 loc) · 1.17 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
# Based on:
# https://betterscientificsoftware.github.io/
# python-for-hpc/tutorials/python-pypi-packaging/
from setuptools import setup
import versioneer
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="hylaa",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="Hylaa",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/stanleybak/hylaa",
author="Stanley Bak",
author_email="[email protected]",
license="GPLv3",
packages=["hylaa"],
install_requires=[
"ffmpeg-python",
"pytest",
"numpy",
"scipy",
"sympy",
"matplotlib",
"termcolor",
"swiglpk",
"graphviz",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering"
],
)