-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·37 lines (33 loc) · 1.22 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
#!/usr/bin/env python3
import os.path
from setuptools import setup, find_packages
def get_description():
README = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'README.md')
with open(README, 'r') as f:
return f.read()
setup(
name='pygoridge',
version='0.1.0',
author='Maksim Ryndin',
author_email='[email protected]',
url='https://github.com/atsaero/pygoridge',
description='Python-Golang IPC bridge, python client for Goridge',
long_description=get_description(),
license='MIT',
packages=find_packages(exclude=("tests", "examples", "goridge")),
python_requires='>=3.6',
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Natural Language :: Russian',
'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 :: Implementation :: CPython',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)