-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
44 lines (40 loc) · 1.29 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
from setuptools import setup, Extension
def long_description():
with open('README.rst') as fp:
return fp.read()
setup(
name='p537',
version='1.0.8',
author="John Sirois",
author_email="[email protected]",
description='A tiny platform-specific distribution with a console script.',
long_description=long_description(),
long_description_content_type="text/x-rst",
url='https://github.com/pex-tool/p537',
license='Apache License, Version 2.0',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'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 :: 3.14',
],
python_requires=">=3.6,<3.15",
ext_modules=[
Extension('p537', sources=['p537module.c']),
],
entry_points={
'console_scripts': [
'p537 = p537:greet',
],
},
)