-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (42 loc) · 1.21 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
# Read README and CHANGES files for the long description
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.md')).read()
PACKAGEFULLNAME = 'pidcontroller'
PACKAGENAME = 'pidcontroller'
DESCRIPTION = 'Simple PID Controller'
LONG_DESCRIPTION = ''
AUTHOR = 'Otger Ballester'
AUTHOR_EMAIL = '[email protected]'
LICENSE = open(os.path.join(here, 'LICENSE')).read()
URL = None
VERSION = '0.0.2'
RELEASE = 'dev' not in VERSION
print(find_packages('pidcontroller'))
# Read the version information
#execfile(os.path.join(here, '__init__.py'))
setup(
name=PACKAGEFULLNAME,
version=VERSION,
description=DESCRIPTION,
#scripts=scripts,
requires=[],
install_requires=[],
provides=[PACKAGENAME],
author=AUTHOR,
author_email=AUTHOR_EMAIL,
license=LICENSE,
url=URL,
long_description=LONG_DESCRIPTION,
zip_safe=False,
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python",
],
#ata=True,
packages=find_packages()
#zip_safe=True,
)