-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (42 loc) · 1.6 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
#!/usr/bin/env python
from setuptools import setup, find_packages
import functools
import os
import platform
_PYTHON_VERSION = platform.python_version()
_in_same_dir = functools.partial(os.path.join, os.path.dirname(__file__))
with open(_in_same_dir('irrigationbone', "__version__.py")) as version_file:
exec(version_file.read()) # pylint: disable=W0122
project_name='irrigationbone'
package_data=[]
for f in os.listdir(project_name):
if os.path.isfile(os.path.join(project_name,f)):
if not f.endswith('.py') and not f.endswith('.pyc'):
package_data.extend( [f] )
"""
package_data.extend( ['sd_reference.txt'] )
with open('packages.json', 'w') as f:
json.dump( find_packages(), f )
with open('package_data', 'w') as f:
for s in package_data:
f.write(s + '\n')
"""
setup(name=project_name,
classifiers=[
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
],
description='Irrigation based on evaporation data',
author='Niv Gal Waizer',
author_email='[email protected]',
version=__version__, # pylint: disable=E0602
url='https://github.com/nivw/irrigation_bone',
packages=find_packages(exclude=["tests"]),
install_requires = ['munch>=2.0.4','requests>=2.9.1','logbook','bs4'],
entry_points={
'console_scripts': [
'schedule_irrigation = {}.schedule_irrigation:main'.format(project_name),
'wfs = {}.wfs:main'.format(project_name),
]
},
)