-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
setup.py
62 lines (54 loc) · 2.26 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
61
62
import os.path
from setuptools import setup, find_packages
readme_path = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'README.md')
with open(readme_path) as f:
long_desc = f.read()
setup(
name='python_minifier',
description='Transform Python source code into it\'s most compact representation',
author='Daniel Flook',
author_email='[email protected]',
url='https://github.com/dflook/python-minifier',
license='MIT',
project_urls={
'Issues': 'https://github.com/dflook/python-minifier/issues',
'Documentation': 'https://dflook.github.io/python-minifier/',
'Changelog': 'https://github.com/dflook/python-minifier/blob/main/CHANGELOG.md'
},
keywords='minify minifier',
use_scm_version=True,
package_dir={'': 'src'},
packages=find_packages('src'),
package_data={"python_minifier": ["py.typed", "*.pyi", "rename/*.pyi", "transforms/*.pyi"]},
long_description=long_desc,
long_description_content_type='text/markdown',
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <3.14',
setup_requires=['setuptools_scm'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'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 :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Intended Audience :: Developers',
'Topic :: Software Development'
],
entry_points={
'console_scripts': ['pyminify=python_minifier.__main__:main']
},
zip_safe=True
)