-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (39 loc) · 1.3 KB
/
setup.py
File metadata and controls
44 lines (39 loc) · 1.3 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
34
35
36
37
38
39
40
41
42
43
44
'''
Created on Jun. 6, 2019
@author: KJNETHER
using date as versions to simplify
'''
import setuptools
import datetime
import version
import bcdc_apitests
with open("README.md", "r") as fh:
long_description = fh.read()
with open('requirements.txt') as f:
requires = f.read().splitlines()
print(f'requirements: {requires}')
setuptools.setup(
#name=bcdc_apitests.name,
name=version.pkg_name,
# version=datetime.datetime.now().strftime('%Y.%m.%d'),
version=version.next_version,
author="Kevin Netherton",
author_email="kevin.netherton@gov.bc.ca",
description="API testing for BC Data Catalog",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/bcgov/bcdc-test",
packages=setuptools.find_packages(),
python_requires='>=2.6, !=3.0.*, !=3.1.*, !=3.2.*, <4',
install_requires=requires,
include_package_data=True,
scripts=['bcdc_apitests/pytest-run.py'],
classifiers=[
"Development Status :: 4 - Beta",
"Framework :: Pytest",
"Programming Language :: Python :: 2.7",
"License :: OSI Approved :: Apache Software License",
"Topic :: Software Development :: Testing",
"Operating System :: OS Independent",
],
)