-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (46 loc) · 1.58 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
"""A setuptools based setup module.
See:
https://packaging.python.org/guides/distributing-packages-using-setuptools/
https://github.com/pypa/sampleproject
"""
import pathlib
from setuptools import setup, find_packages
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / 'README.md').read_text(encoding='utf-8')
setup(
name='echelon2evco2',
version='1.0.0',
description='Echelon to EVCO2 connector',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://gitlab.com/inlecom/lead/models/echelon-2-evco2',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
"Programming Language :: Python :: 3.10",
'Programming Language :: Python :: 3 :: Only',
],
keywords='lead, development, echelon, evco2, connector',
package_dir={'': 'src'},
packages=find_packages(where='src'),
python_requires='>=3.6, <4',
install_requires=[
'pandas',
'openpyxl',
'numpy',
],
entry_points={
'console_scripts': [
'echelon-2-evco2=echelon2evco2.__main__:main'
],
},
project_urls={
'Source': 'https://gitlab.com/inlecom/lead/models/echelon-2-evco2',
'Issues': 'https://gitlab.com/inlecom/lead/models/echelon-2-evco2/issues',
},
)