-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 1005 Bytes
/
setup.py
File metadata and controls
30 lines (28 loc) · 1005 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
28
29
30
from setuptools import setup
from pathlib import Path
this_directory = Path(__file__).parent
__project__ = "Ranthon"
__version__ = "1.1.6"
__description__ = "A collection of Python packages written by Walter J Hare."
__packages__ = ["infseq"]
__install_requires__ = ["filelog", "math", "decimal" "random"]
__long_description__ = (this_directory / "README.md").read_text()
__long_description_content_type__ = 'text/markdown'
__url__ = 'https://github.com/WFlyToTheSky/RanthonRepo'
__license_files__ = ('LICENSE.txt')
__classifiers__ = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License"
]
setup(
name = __project__,
version = __version__,
description = __description__,
packages = __packages__,
install_requires = __install_requires__,
long_description = __long_description__,
long_description_content_type = __long_description_content_type__,
url = __url__,
license_files = __license_files__,
classifiers = __classifiers__
)