forked from seed-labs/seed-emulator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 744 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
import setuptools
with open("README.md", "r") as readme:
long_description = readme.read()
setuptools.setup(
name = "seedemu",
version = "0.0.7",
author = "Honghao Zeng",
author_email = "hozeng@syr.edu",
description = "SEED Internet Emulator",
long_description = long_description,
long_description_content_type = "text/markdown",
url = "https://github.com/seed-labs/seed-emulator",
packages = setuptools.find_packages(),
include_package_data = True,
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GPL-3.0",
"Operating System :: OS Independent",
],
install_requires = [
'requests'
],
python_requires = '>=3.6'
)