-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (41 loc) · 1.14 KB
/
setup.py
File metadata and controls
45 lines (41 loc) · 1.14 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
45
from distutils.core import setup
from footil import __version__
test_deps = [
"pytest",
"mock",
]
extras = {
'test': test_deps,
}
setup(
name='footil',
version=__version__,
packages=['footil', 'footil.tools'],
license='LGPLv3',
url='https://github.com/focusate/footil',
description="Various Python helpers for other projects",
long_description=open('README.rst').read(),
install_requires=[
'yattag',
'python-dateutil',
'verboselogs',
# TODO: upgrade to 3.*.* >= version once it is released.
'semver <= 2.13.0',
'natsort',
],
tests_require=test_deps,
extras_require=extras,
maintainer='Andrius Laukavičius',
maintainer_email='dev@focusate.eu',
python_requires='>=3.5',
classifiers=[
'Environment :: Other Environment',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development',
'Topic :: Utilities',
],
)