-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
40 lines (36 loc) · 1.3 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
import os
from setuptools import find_packages, setup
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, "README.md")) as f:
long_description = f.read()
setup(
name="attributes-doc",
version="0.3.0",
python_requires=">=3.8",
url="https://github.com/tkukushkin/attributes-doc",
author="Timofey Kukushkin",
author_email="[email protected]",
description="PEP 224 implementation",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
packages=find_packages("src"),
package_dir={"": "src"},
include_package_data=True,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"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",
"Topic :: Software Development :: Libraries :: Python Modules",
],
project_urls={
"Source": "https://github.com/tkukushkin/attributes-doc",
},
)