forked from HAL24K/pyvlog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (25 loc) · 907 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
from setuptools import setup, find_packages
with open("README.md", "r") as readme_file:
readme = readme_file.read()
with open('requirements.txt') as f:
requirements_lines = f.readlines()
install_requires = [r.strip() for r in requirements_lines]
setup(
name="pyvlog",
version="0.1",
author="Samuel Blake",
author_email="[email protected]",
description="Python package for working with the V-Log traffic control data protocol",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/HAL24K/pyvlog",
packages=find_packages(),
install_requires=install_requires,
test_suite='nose.collector',
tests_require=['nose>=1.3.7'],
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
)