-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
38 lines (33 loc) · 1.22 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
from setuptools import setup, find_packages
def readme():
with open("README.md") as f:
return f.read()
with open("requirements.txt") as reqs_file:
reqs = filter(lambda x: not x.startswith("-"), reqs_file.readlines())
reqs_list = list(map(lambda x: x.rstrip(), reqs))
setup(
name="gestalt-cfg",
version="3.4.2",
description="A sensible configuration library for Python",
long_description=readme(),
long_description_content_type="text/markdown",
url="https://github.com/clear-street/gestalt",
author="Clear Street",
author_email="[email protected]",
license="MIT",
packages=find_packages(),
python_requires=">=3.6",
install_requires=reqs_list,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent",
],
)