-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 841 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (25 loc) · 841 Bytes
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
from setuptools import find_packages, setup
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="metamorphism",
version="0.1.0",
description="Implements metamorphic classes for Python",
packages=find_packages(where="."),
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/joshurtree/metamorphism",
author="Josh Andrews",
author_email="joshurtree@gmail.com",
license="Apache",
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules"
],
extra_requrie={
"dev": ["twine>=5.1.1"]
},
python_requires=">=3.7"
)