-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
48 lines (41 loc) · 1.17 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
# -*- coding: utf-8 -*-
from setuptools import setup
with open('README.rst') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
packages = [
'plinth'
]
requires = [
'PyTomCrypt >= 0.9.0',
'gevent >= 1.0'
]
setup(
name='plinth',
version='0.0.14',
description='Python Library for InterNetworking with TeleHash',
long_description=readme,
author='David Van Duzer',
author_email='[email protected]',
url='https://github.com/telehash/plinth',
license=license,
packages=packages,
package_data = {'': ['LICENSE']},
package_dir = {'plinth': 'plinth'},
include_package_data=True,
install_requires=requires,
classifiers=(
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Programming Language :: Python :: 2.7',
'Topic :: Internet',
'Topic :: Security',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Networking',
),
)