-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (35 loc) · 944 Bytes
/
setup.py
File metadata and controls
41 lines (35 loc) · 944 Bytes
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
import setuptools
with open('README.md', 'r') as file:
long_description = file.read()
packages = [
i
for i in setuptools.find_packages()
if i.startswith('genki')
]
requires = [
'cffi==1.14.3',
'gevent==20.9.0',
'greenlet==0.4.17',
'pycparser==2.20',
'zope.event==4.5.0',
'zope.interface==5.1.2',
'chardet==3.0.4'
]
setuptools.setup(
name='genki',
version='0.0.1',
author='Crystal Melting Dot',
author_email='stresspassing@gmail.com',
description='Asynchronous HTTP requests with gevent.',
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=requires,
url='https://github.com/cmd410/genki',
packages=packages,
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent'
],
python_requires='>=3.7',
)