-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 1.06 KB
/
setup.py
File metadata and controls
33 lines (31 loc) · 1.06 KB
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 setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="dlispy",
version="0.0.1",
description="A python library to parse DLIS file",
long_description=long_description,
platforms='any',
test_suite='dlispy.tests.test_basic',
long_description_content_type="text/markdown",
url="https://github.com/teradata/dlispy",
packages=setuptools.find_packages(exclude=["tests.*", "tests"]),
include_package_data=True,
install_requires=['atomicwrites==1.1.5',
'attrs==18.1.0',
'click==6.7',
'more-itertools==4.3.0',
'pluggy==0.7.1',
'py==1.5.4',
'pytest==3.7.1',
'six==1.11.0'
],
python_requires='>=3.5',
classifiers=(
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"LICENSE :: OSI APPROVED :: BSD LICENSE",
"Operating System :: OS Independent",
),
)