-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
37 lines (33 loc) · 1.23 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
#!/usr/bin/env python
from io import open
from setuptools import setup, find_packages
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="wheeltools",
use_scm_version={"write_to": "src/wheeltools/_version.py"},
description="General tools for working with wheels",
long_description=long_description,
long_description_content_type="text/markdown",
author="Matthew Brett",
maintainer="Matthew Brett",
author_email="[email protected]",
url="https://github.com/anthrotype/wheeltools",
package_dir={"": "src"},
packages=find_packages("src"),
install_requires=["wheel"],
setup_requires=["setuptools_scm"],
extras_require={"testing": ["pytest >= 3.0.0, <4", "pytest-cov >= 2.5.1, <3"]},
license="BSD license",
classifiers=[
"Intended Audience :: Developers",
"Environment :: Console",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Development Status :: 4 - Beta",
"Topic :: Software Development :: Libraries :: " "Python Modules",
"Topic :: Software Development :: Build Tools",
],
)