-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
28 lines (23 loc) · 875 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
#!/usr/bin/python
from setuptools import setup
setup(name='neteria',
version='1.0.3',
description='A simple game networking library.',
keywords='gaming networking network game',
author='William Edwards',
author_email='shadowapex@gmail.com',
url='http://www.neteria.org',
packages=['neteria'],
license='GPLv3',
install_requires = ['rsa'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Topic :: System :: Networking',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
],
)