-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (29 loc) · 981 Bytes
/
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
import os
from setuptools import setup, find_packages
here = os.path.dirname(os.path.abspath(__file__))
with open(os.path.join(here, 'requirements-fixed.txt')) as stream:
REQUIRES = stream.readlines()
setup(
name='bicimad',
version='6.1.0',
description='BiciMad unofficial api',
author='Javier Santacruz',
author_email='[email protected]',
url='https://github.com/jvrsantacruz/bicimad',
packages=find_packages(exclude=['tests', 'tests.*']),
zip_safe=False,
include_package_data=True,
install_requires=REQUIRES,
classifiers=[
'Environment :: Console',
'Operating System :: POSIX',
'Development Status :: 3 - Alpha',
'Programming Language :: Python',
'Programming Language :: Python :: 3.4',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
],
platforms=['Any'],
entry_points={
'console_scripts': ['bmad = bicimad.cli:cli']
}
)