-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
executable file
·99 lines (83 loc) · 2.9 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#!/usr/bin/env python
"""
paco
====
Utility library for asynchronous coroutine-driven programming for Python +3.4.
:copyright: (c) 2016-2018 Tomas Aparicio
:license: MIT
"""
import os
import sys
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
# Publish command
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
sys.exit()
setup_requires = []
if 'test' in sys.argv:
setup_requires.append('pytest')
def read_version(package):
with open(os.path.join(package, '__init__.py'), 'r') as fd:
for line in fd:
if line.startswith('__version__ = '):
return line.split()[-1].strip().strip("'")
# Get package current version
version = read_version('paco')
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = ['tests/']
self.test_suite = True
def run_tests(self):
# import here, cause outside the eggs aren't loaded
import pytest
errno = pytest.main(self.test_args)
sys.exit(errno)
with open('requirements-dev.txt', encoding='utf-8') as f:
tests_require = f.read().splitlines()
with open('README.rst', encoding='utf-8') as f:
readme = f.read()
with open('History.rst', encoding='utf-8') as f:
history = f.read()
setup(
name='paco',
version=version,
author='Tomas Aparicio',
author_email='tomas+python@aparicio.me',
description=(
'Small utility library for coroutine-based '
'asynchronous generic programming'
),
url='https://github.com/h2non/paco',
license='MIT',
long_description=readme + '\n\n' + history,
py_modules=['paco'],
zip_safe=False,
tests_require=tests_require,
packages=find_packages(exclude=['tests', 'examples']),
package_data={'': ['LICENSE', 'History.rst', 'requirements-dev.txt']},
package_dir={'paco': 'paco'},
include_package_data=True,
cmdclass={'test': PyTest},
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Development Status :: 5 - Production/Stable',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: Implementation :: CPython'
],
)