forked from fengsp/django-grpc-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (29 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
import re
from setuptools import find_packages, setup
with open('django_grpc_framework/__init__.py', 'rb') as f:
version = str(eval(re.search(r'__version__\s+=\s+(.*)',
f.read().decode('utf-8')).group(1)))
setup(
name='djangogrpcframework',
version=version,
description='gRPC for Django.',
long_description=open('README.rst', 'r', encoding='utf-8').read(),
url='https://github.com/fengsp/django-grpc-framework',
author='Shipeng Feng',
author_email='fsp261@gmail.com',
packages=find_packages(),
install_requires=[],
python_requires=">=3.6",
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3 :: Only',
],
)