-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (35 loc) · 1.25 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
"""
write-pypistat
write-pypistat makes it easy to collect, filter and save pypi statistics to csv files.
"""
from setuptools import setup # type: ignore
with open("requirements.txt", encoding="utf8") as fp:
requirements = fp.read().splitlines()
with open("README.md", encoding="utf8") as fp:
long_description = fp.read()
setup(
name="write-pypistat",
version="0.5.5",
description=(
"write-pypistat makes it easy to collect, filter and save pypi statistics to csv files."
),
long_description=long_description,
long_description_content_type="text/markdown",
license="Apache 2.0",
packages=["writepypistat"],
package_dir={"writepypistat": "src/writepypistat"},
python_requires=">=3.6",
install_requires=requirements,
url="https://github.com/veghdev/write-pypistat",
project_urls={
"Documentation": "https://github.com/veghdev/write-pypistat",
"Source": "https://github.com/veghdev/write-pypistat",
"Tracker": "https://github.com/veghdev/write-pypistat/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Environment :: Console",
],
)