-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 781 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (23 loc) · 781 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
from setuptools import setup
with open("requirements.txt") as fid:
requirements = [l.strip() for l in fid.readlines() if l.strip()]
from gabliterate import __version__
setup(
name="gabliteration",
version=__version__,
author="Gökdeniz Gülmez",
description="Automated Gabliteration",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
url="https://github.com/Goekdeniz-Guelmez/gabliteration",
packages=["gabliterate"],
license="MIT",
python_requires=">=3.8",
install_requires=requirements,
entry_points={
"console_scripts": [
"gabliterate=gabliterate.automate:main",
"gabliterate_fast=gabliterate.automate_fast:main",
],
}
)