-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (41 loc) · 1.06 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
from setuptools import setup
with open('pgtrio/_version.py') as f:
exec(f.read())
test_dependencies = [
'pytest==7.1.1',
'pytest-trio==0.7.0',
'coverage==6.3.2',
'coverage-badge==1.1.0',
]
dev_dependencies = test_dependencies + [
'wheel',
'twine==4.0.0',
]
setup(
name='pgtrio',
version=__version__,
description='A Trio-Native PostgreSQL Interface Library',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='http://github.com/elektito/pgtrio',
author='Mostafa Razavi',
author_email='mostafa@sepent.com',
license='MIT',
packages=['pgtrio'],
zip_safe=False,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
'trio==0.20.0',
'python-dateutil==2.8.2',
'orjson==3.6.8',
'parsimonious==0.9.0',
],
extras_require={
'test': test_dependencies,
'dev': dev_dependencies,
},
)