-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (41 loc) · 1.56 KB
/
setup.py
File metadata and controls
48 lines (41 loc) · 1.56 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
#!/usr/bin/env python3
from setuptools import setup
from giternity import __version__
try:
import pypandoc
import re
long_description = pypandoc.convert("README.md", "rst")
# remove raw html blocks, they're not supported on pypi
long_description = re.sub("\s+\.\. raw:: html\s*.+? -->", "", long_description, count=2)
except:
long_description = ""
setup(
name="giternity",
version=__version__,
description="Mirror git repositories and retrieve metadata for cgit.",
long_description=long_description,
url="https://github.com/rahiel/giternity",
license="GPLv3+",
python_requires=">=3.5",
py_modules=["giternity"],
install_requires=["requests", "toml"],
entry_points={"console_scripts": ["giternity=giternity:main"]},
author="Rahiel Kasim",
author_email="rahielkasim@gmail.com",
# https://pypi.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Development Status :: 4 - Beta",
# "Development Status :: 5 - Production/Stable",
# "Development Status :: 6 - Mature",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: POSIX",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.5",
"Topic :: Software Development :: Version Control :: Git",
"Topic :: System :: Archiving :: Mirroring",
],
keywords="giternity git mirror cgit"
)