-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
45 lines (39 loc) · 1.3 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 -*-
"""Setup pel la llibreria de Exportació dels 1048.
"""
import sys
from setuptools import setup, find_packages
PACKAGES_DATA = {}
with open('requirements.txt', 'r') as f:
INSTALL_REQUIRES = f.readlines()
with open('requirements-dev.txt', 'r') as f:
TESTS_REQUIRE = f.readlines()
DEPENDENCY_LINKS = [
'https://github.com/gisce/ooop/archive/xmlrpc_transaction.zip'
]
if sys.version_info[1] < 6:
INSTALL_REQUIRES += ['multiprocessing']
setup(name='libcnmc',
description='Generació fitxers CNMC',
author='GISCE-TI, S.L.',
author_email='[email protected]',
url='http://www.gisce.net',
version='24.16.0',
license='General Public Licence 2',
long_description='''Long description''',
provides=['libcnmc'],
install_requires=INSTALL_REQUIRES,
tests_require=TESTS_REQUIRE,
packages=find_packages(exclude=['tests']),
dependency_links=DEPENDENCY_LINKS,
package_data=PACKAGES_DATA,
entry_points={
'console_scripts': [
'f1 = libcnmc.cli:cir_4_2014_f1',
'f1bis = libcnmc.cli:cir_4_2014_f1bis',
'f11 = libcnmc.cli:cir_4_2014_f11',
'cnmc = libcnmc.cli:cli',
'cnmc_checker = libcnmc.checker:node_check'
]
})