-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (41 loc) · 1.21 KB
/
setup.py
File metadata and controls
50 lines (41 loc) · 1.21 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
46
47
48
49
50
import os
from setuptools import find_packages, setup
import deplint
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="deplint",
version=deplint.__version__,
author="Martin Matusiak",
author_email="numerodix@gmail.com",
description=("A linter for dependencies"),
long_description=read('README.md'),
license="Apache",
keywords="requirements dependencies linter pip",
url="https://github.com/numerodix/deplint",
scripts=[
"bin/deplint",
],
packages=find_packages(
where='.',
exclude=[
'tests*',
],
),
# packages imported in the program
install_requires=[
'packaging',
'safety',
'six',
],
# packages imported in the tests (not used, using tox instead)
# http://tox.readthedocs.io/en/latest/example/basic.html#integration-with-setup-py-test-command
tests_require=[],
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Topic :: Utilities",
"Topic :: Software Development :: Quality Assurance",
"Intended Audience :: Developers",
],
)