-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 715 Bytes
/
setup.py
File metadata and controls
26 lines (23 loc) · 715 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
import os
from setuptools import setup
with open("README.md") as fid:
README = fid.read()
with open("requirements.txt") as reqf:
reqs = map(lambda x: x.strip(), reqf.readlines())
reqs = filter(lambda x: x != "pyinstaller", reqs)
reqs = filter(lambda x: x, reqs)
reqs = list(reqs)
setup(
name="utsushis-charm",
version="1.8",
description="Easily get all your mhr and mhr:sunbreak charms",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/chpoit/utsushis-charm",
author="chpoit",
author_email="chpoit@chpoit.com",
license="MIT",
packages=["src"],
include_package_data=True,
install_requires=reqs,
)