-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
36 lines (32 loc) · 1.03 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
import os.path
import setuptools
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as f:
readme = f.read()
setuptools.setup(
name='contextvars',
version="2.4",
url='http://github.com/MagicStack/contextvars',
description='PEP 567 Backport',
long_description=readme,
author='MagicStack Inc',
author_email='[email protected]',
packages=['contextvars'],
provides=['contextvars'],
install_requires=[
'immutables>=0.9',
],
license='Apache License, Version 2.0',
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.5',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'License :: OSI Approved :: Apache Software License',
'Intended Audience :: Developers',
],
include_package_data=True,
test_suite='tests.suite',
)