Uh oh!
There was an error while loading. Please reload this page.
forked from ksmaheshkumar/ButterflyNet
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
30 lines (27 loc) · 1001 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (27 loc) · 1001 Bytes
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
fromsetuptoolsimportsetup
importsys, os
ifnotos.environ.get("CIRCLE_USERNAME", None):
ifnotsys.version_info>= (3, 4, 0):
sys.exit("Sorry, this library requires Python 3.4 or higher.")
setup(
name='ButterflyNet',
version='1.1.0',
packages={'bfnet', 'bfnet.packets'},
url='https://butterflynet.veriny.tf',
license='LGPLv3',
author='Isaac Dickinson',
author_email='eyesismine@gmail.com',
description='A better networking library.',
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Topic :: Internet",
"Topic :: Software Development :: Libraries"
],
tests_require=["pytest", "tox", "tox-pyenv"],
setup_requires=['pytest-runner'],
install_requires=["msgpack-python"]
)