-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
34 lines (31 loc) · 1.05 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
import sys
import os
from setuptools 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)))
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'sense'))
from version import VERSION
setup(
name='sense-python-client',
version=VERSION,
description='Sen.se API client',
long_description='',
url='https://sen.se/developers/',
author='Sen.se',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
"Topic :: Software Development :: Libraries :: Python Modules",
],
packages=['sense'],
include_package_data=True,
# https://caremad.io/2013/07/setup-vs-requirement/
install_requires=["requests", "python-dateutil"],
)