-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (32 loc) · 1.02 KB
/
setup.py
File metadata and controls
38 lines (32 loc) · 1.02 KB
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
#!/usr/bin/env python
"Setuptools params"
from setuptools import setup, find_packages
from os.path import join
# Get version number from source tree
import sys
sys.path.append('.')
scripts = [join('bin', filename) for filename in ['sn']]
modname = distname = 'starrynet'
setup(
name=distname,
version="1.0.0",
description=
'StarryNet for the emulation of satellite Internet constellations.',
author=' Yangtao Deng',
author_email='dengyt21@mails.tsinghua.edu.cn',
packages=['starrynet'],
long_description="""
StarryNet is a network emulator for satellite Internet constellations.
""",
classifiers=[
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Development Status :: 1 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: System :: Emulators",
],
keywords='satellite Internet constellations emulator protocol',
license='BSD',
install_requires=['setuptools'],
scripts=scripts,
)