-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
60 lines (51 loc) · 1.71 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
# -*- coding: utf-8 -*-
# :Project: metapensiero.util.stream -- Utility classes for asynchronous streams
# :Created: Wed 17 Jan 2018 19:44:33 CET
# :Author: Alberto Berti <[email protected]>
# :License: GNU General Public License version 3 or later
# :Copyright: © 2018 Alberto Berti
#
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
README = f.read()
with open(os.path.join(here, 'CHANGES.rst'), encoding='utf-8') as f:
CHANGES = f.read()
with open(os.path.join(here, 'version.txt'), encoding='utf-8') as f:
VERSION = f.read().strip()
setup(
name="metapensiero.util.stream",
version=VERSION,
url="https://gitlab.com/metapensiero/metapensiero.util.stream",
description="Utility classes for asynchronous streams",
long_description=README + '\n\n' + CHANGES,
author="Alberto Berti",
author_email="[email protected]",
license="GPLv3+",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
],
keywords="",
packages=['metapensiero.util.' + pkg
for pkg in find_packages('src/metapensiero/util')],
package_dir={'': 'src'},
namespace_packages=['metapensiero', 'metapensiero.util'],
install_requires=['setuptools'],
extras_require={
'dev': [
'metapensiero.tool.bump_version',
'readme_renderer',
]
},
setup_requires=[
'pytest-runner'
],
tests_require=[
'pytest',
'pytest-asyncio'
]
)