-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
35 lines (33 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
35
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md')) as f:
README = f.read()
with open(os.path.join(here, 'requirements.txt')) as f:
requires = [line.strip() for line in f
if len(line) > 1 and not line.startswith('#')]
setup(
name='vdv2pg',
version='0.0.2',
description='Import VDV 451 files into a database',
long_description=README,
long_description_content_type='text/markdown',
url="https://github.com/geops/vdv2pg",
author='Milan Oberkirch | geOps',
author_email='[email protected]',
keywords='vdv2pg sql database',
license='MIT',
classifiers=[
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
],
packages=['vdv2pg'],
install_requires=requires,
include_package_data=True,
entry_points="""\
[console_scripts]
vdv2pg = vdv2pg:main
""",
)