-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (31 loc) · 1.13 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
from setuptools import setup, find_packages
setup(
name="setuptools_pep660",
version="0.1",
description="An experimental replacement for 'setup.py develop'",
long_description="Implements a PEP 517 + PEP 660 backend",
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Archiving :: Packaging",
],
author="Daniel Holth",
author_email="[email protected]",
url="https://github.com/dholth/setuptools_pep660",
keywords="setuptools pep660 pep517",
license="MIT",
packages=find_packages("src"), # returns ["setuptools_pep660"]
package_dir={
"": "src"
}, # "setuptools_pep660": "src/setuptools_pep660" would work but not as well
install_requires=["setuptools", "wheel", "editables==0.2"],
entry_points={
"distutils.commands": [
"editable_wheel = setuptools_pep660.editable_wheel:editable_wheel"
]
},
include_package_data=True,
zip_safe=False,
)