-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
54 lines (47 loc) · 1.47 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
47
48
49
50
51
52
53
54
#!/usr/bin/env python
import io
import os
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
# Allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
path_readme = os.path.join(os.path.dirname(__file__), 'README.md')
try:
import pypandoc
README = pypandoc.convert(path_readme, 'rst')
except (IOError, ImportError):
with io.open(path_readme, encoding='utf-8') as readme:
README = readme.read()
VERSION = "0.1.0"
setup(
name='pleeplee-interface',
version=VERSION,
license='MIT License',
packages=['pleepleeapp'],
include_package_data=True,
zip_safe=False, # Because of the certificate
install_requires=[
'sphinx',
'sphinxcontrib-napoleon',
'pygame'
],
description='PleePlee robot user interface',
long_description=README,
author='Ashkan Kiaies-Sandjie',
author_email='kiaies_a',
url='https://github.com/pleeplee-robot/interface',
keywords=['pleeplee', 'robot', 'gardening', 'interface'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Framework :: Robot Framework',
'Framework :: Robot Framework :: Tool',
'Development Status :: 4 - Beta'
]
)