-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·56 lines (48 loc) · 1.68 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
50
51
52
53
54
55
56
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="CombCov",
version="0.6.5",
author="Permuta Triangle",
author_email="[email protected]",
description="Searching for combinatorial covers.",
license="GPL-3",
keywords="combinatorics covers automatic discovery",
url="https://github.com/PermutaTriangle/CombCov",
project_urls={
"Source": "https://github.com/PermutaTriangle/CombCov",
"Tracker": "https://github.com/PermutaTriangle/CombCov/issues",
},
packages=find_packages(),
long_description=read("README.md"),
long_description_content_type="text/markdown",
install_requires=[
"permuta==1.2.1",
"PuLP==2.0",
],
setup_requires=["pytest-runner==5.2"],
tests_require=[
"pytest==5.3.2",
"pytest-cov==2.8.1",
"pytest-pep8==1.0.6",
"pytest-isort==0.3.1",
],
python_requires=">=3.5",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Education",
"Topic :: Scientific/Engineering :: Mathematics",
],
)