-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (32 loc) · 993 Bytes
/
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
import os
import setuptools
readme_path = os.path.join(os.path.dirname(__file__), "README.md")
with open(readme_path, "r") as fp:
long_description = fp.read()
here = os.path.abspath(os.path.dirname(__file__))
setuptools.setup(
name="sprig",
author="AP Ljungquist",
author_email="ap@ljungquist.eu",
description="A home to code that would otherwise be homeless",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/apljungquist/sprig",
license="MIT",
packages=setuptools.find_packages("src"),
package_dir={"": "src"},
package_data={
"sprig": ["py.typed"],
},
zip_safe=False,
install_requires=[
"more_itertools",
"typing_extensions",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)