generated from agrc/python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
61 lines (58 loc) · 1.67 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
"""
setup.py
A module that installs projectname as a module
"""
from glob import glob
from os.path import basename, splitext
from setuptools import find_packages, setup
#: Load version from source file
version = {}
with open('src/validator/version.py') as fp:
exec(fp.read(), version)
setup(
name='ugrc-bdc-challenge-validator',
version=version['__version__'],
license='MIT',
description='Project description.',
author='UGRC',
author_email='[email protected]',
url='https://github.com/agrc/bdc-challenge-validator',
packages=find_packages('src'),
package_dir={'': 'src'},
py_modules=[splitext(basename(path))[0] for path in glob('src/*.py')],
include_package_data=True,
zip_safe=True,
classifiers=[
# complete classifier list: http://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Utilities',
],
project_urls={
'Issue Tracker': 'https://github.com/agrc/python/issues',
},
keywords=['gis'],
install_requires=['arcgis>1.7'],
extras_require={
'tests': [
'pylint-quotes~=0.2',
'pylint>=2.11,<4.0',
'pytest-cov>=3,<7',
'pytest-instafail~=0.4',
'pytest-isort>=2,<5',
'pytest-mock~=3.8',
'pytest-pylint~=0.18',
'pytest-watch~=4.2',
'pytest>=6,<9',
'yapf~=0.31',
]
},
setup_requires=[
'pytest-runner',
],
entry_points={'console_scripts': [
'bdcvalidator = validator.main:main',
]},
)