-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
27 lines (26 loc) · 1.18 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
from setuptools import setup, find_packages
setup(
name = 'hermes-simulator',
packages = find_packages(),
version = 'v0.1.3beta',
license = 'GPL3+',
description = 'Simulator for satellite data relay systems',
author = 'Jos van \'t Hof',
author_email = '[email protected]',
url = 'https://github.com/Josvth/hermes-simulator',
download_url = 'https://github.com/Josvth/hermes-simulator/archive/v0.1.2beta.tar.gz',
keywords = ['data', 'relay', 'satellite'],
install_requires=['poliastro',
'PyQt5',
'mayavi'],
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers', # Define that your audience are developers
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', # Again, pick a license
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)