-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
28 lines (27 loc) · 891 Bytes
/
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
from setuptools import setup,find_packages
try:
with open('VERSION.txt', 'r') as v:
version = v.read().strip()
except Exception:
version = '0.0.0-dev'
setup(
name = 'pyserver',
packages = find_packages(exclude=["dist"]),
description = 'TCP/UDP Aysnchronous Server/Client Library',
author = 'Woong Gyu La',
author_email = '[email protected]',
version=version,
url = 'https://github.com/juhgiyo/pyserver', # use the URL to the github repo
keywords = ['tcp', 'udp', 'server', 'library'], # arbitrary keywords
license="The MIT License (MIT)",
install_requires=['pyserialize'],
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
],
)