-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·60 lines (54 loc) · 1.86 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/env python
import os
from setuptools import setup
here = os.path.dirname(__file__)
with open(os.path.join(here, 'README.rst')) as f:
long_description = f.read()
version = None
with open(os.path.join(here, 'summary.py')) as f:
for line in f:
if line.startswith('__version__'):
version = line.partition('=')[-1].strip(' \'"\n')
setup(
name='project-summary',
version=version,
author='Marius Gedminas',
author_email='marius@gedmin.as',
url='https://github.com/mgedmin/project-summary/',
description='Script to generate a summary page for all my projects',
long_description=long_description,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: POSIX',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Private :: Do Not Upload To PyPI', # it rejects unknown classifiers ;)
],
python_requires='>= 3.8',
license='GPL v2 or v3',
py_modules=['summary'],
zip_safe=False,
install_requires=[
'arrow',
'mako',
'markupsafe',
'pypistats >= 0.13',
'requests',
'requests-cache >= 1.0',
],
entry_points={
'console_scripts': [
'summary = summary:main',
],
},
)