-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (41 loc) · 1.52 KB
/
setup.py
File metadata and controls
45 lines (41 loc) · 1.52 KB
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
# -*- coding=utf-8 -*-
r"""
"""
import sys; sys.path.append('src') # noqa
from setuptools import setup
from structurelib import __version__, __author__, __description__, __license__
import os.path as p
HERE = p.abspath(p.dirname(__file__))
setup(
name='structurelib',
version=__version__,
description=__description__,
long_description=open(p.join(HERE, 'README.md'), 'r', encoding='utf-8').read(),
long_description_content_type="text/markdown",
author=__author__,
license=__license__,
url="https://github.com/PlayerG9/structlib-py/",
project_urls={
"Author Github": "https://github.com/PlayerG9",
"Homepage": "https://github.com/PlayerG9/structlib-py/",
"Bug Tracker": "https://github.com/PlayerG9/structlib-py/issues",
},
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"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",
"Topic :: Utilities",
],
install_requires=[],
)