-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (39 loc) · 1.39 KB
/
setup.py
File metadata and controls
43 lines (39 loc) · 1.39 KB
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
from setuptools import find_packages, setup
VERSION = '1.4.0'
with open('requirements.txt', 'r') as f:
requirements = [x.strip() for x in f if x.strip()]
with open('README.rst', 'r') as f:
readme = f.read()
setup(
name='influxable',
packages=find_packages(),
version=VERSION,
license='MIT',
description='A lightweight python ORM / ODM for InfluxDB',
long_description=readme,
author='Javid Mougamadou',
author_email='javidjms0@gmail.com',
url='https://github.com/Javidjms/influxable',
download_url=f"https://github.com/Javidjms/influxable/archive/{VERSION}.zip",
keywords=['python', 'influxdb', 'odm', 'orm', 'driver', 'client'],
entry_points={
'console_scripts': ['influxable=influxable.command_line:main'],
},
package_data={'influxable': ['*.jinja']},
include_package_data=True,
install_requires=requirements,
python_requires='>=3.4',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
project_urls={
'Source': 'https://github.com/Javidjms/influxable',
},
)