-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (46 loc) · 1.38 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
def get_long_description():
with open('README.md', encoding='utf8') as f:
return f.read()
def get_packages(package):
return [
dirpath
for dirpath, dirnames, filenames in os.walk(package)
if os.path.exists(os.path.join(dirpath, '__init__.py'))
]
setup(
name='star_resty',
python_requires='>=3.7',
install_requires=[
'ujson',
'typing_extensions',
'marshmallow>=3.0.0rc8,<4',
'starlette<1',
'apispec<4',
'python-multipart'
],
version='0.0.20',
url='https://github.com/slv0/start_resty',
license='BSD',
description='The web framework',
long_description=get_long_description(),
long_description_content_type='text/markdown',
author='Slava Cheremushkin',
author_email='slv0.chr@gmail.com',
packages=get_packages('star_resty'),
package_data={'star_resty': ['py.typed'], '': ['*.html']},
data_files=[('', ['LICENSE'])],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
'Programming Language :: Python :: 3.7',
],
zip_safe=False,
)