forked from evereux/pycatia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (43 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
43
44
45
46
47
48
49
50
#! /usr/bin/python3.6
import setuptools
from pycatia import __author__, __author_email, __description__, __name__, __version__, __url__
exclude_files = [
'__reference_scripts__',
'__pycache__',
]
requires = [
'atomicwrites==1.2.1',
'attrs==18.2.0',
'colorama==0.4.0',
'more-itertools==4.3.0',
'pluggy==0.8.0',
'py==1.7.0',
'pywin32>=224',
]
test_requirements = [
'pytest == 5.4.2',
'pytest-cov == 2.8.1',
]
with open("README.rst", "r") as fh:
long_description = fh.read()
setuptools.setup(
name=__name__,
version=__version__,
author=__author__,
author_email=__author_email,
description=__description__,
long_description=long_description,
long_description_content_type="text/x-rst",
url=__url__,
packages=setuptools.find_packages(),
python_requires=">=3.6",
classifiers=[
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
],
tests_require=test_requirements,
install_requires=requires,
)