-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (36 loc) · 1.33 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
from setuptools import setup
from os import path
here = path.abspath(path.dirname(__file__))
setup(
name='pygps',
version='0.0.1.dev0',
description='Server to communicate with GPS equipment.',
long_description='Server to communicate with GPS equipment.',
url='https://github.com/sillyemperor/pygps',
author='Wang Jiang',
author_email='[email protected]',
license='MIT',
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
# Indicate who your project is intended for
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
# Pick your license as you wish (should match "license" above)
'License :: OSI Approved :: MIT License',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
],
keywords='GPS equipment protocol',
packages=['pygps', 'pygps/server', 'pygps/protocol', 'pygps/goodhope'],
install_requires=[],
extras_require={},
package_data={},
data_files=[],
entry_points={},
)