-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (39 loc) · 1.4 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
41
42
43
44
from setuptools import setup, find_packages
with open("requirements.txt") as file:
reqs = file.readlines()
with open("requirements-dev.txt") as file:
dev_reqs = file.readlines()
with open("README.md") as file:
readme = file.read()
setup(
name="lambentlight",
version="1.0",
author="Hannele 'Lemon' Ruiz",
author_email="justlemoncl@gmail.com",
description="Tools for working with the Metadata files of LambentLight",
license="MIT",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/LambentLight/Toolkit",
packages=find_packages(),
install_requires=reqs,
extras_require={
"dev": dev_reqs
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Testing"
]
)