-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·46 lines (42 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
43
44
45
46
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='hackerspacepi',
version='0.1.9',
description="SpaceAPI compliant service written in python3.5",
long_description="SpaceAPI compliant service written in python3.5",
author="David Francos Cuartero",
author_email='me@davidfrancos.net',
url='https://github.com/XayOn/HackerspacePI',
packages=[
'hackerspacepi',
],
package_dir={'hackerspacepi':
'hackerspacepi'},
entry_points={
'console_scripts':
['hackerspacepi=hackerspacepi:server',
'hackerspacepi_client=hackerspacepi:client']
},
include_package_data=True,
install_requires=["aiohttp"],
license="BSD",
zip_safe=False,
keywords='hackerspacepi',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
)