-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (23 loc) · 683 Bytes
/
setup.py
File metadata and controls
28 lines (23 loc) · 683 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
27
from setuptools import find_packages, setup
import io
import os
import sys
here = os.path.abspath(os.path.dirname(__file__))
# What packages are required for this module to be executed?
try:
with open(os.path.join(here, "requirements.txt"), encoding="utf-8") as f:
REQUIRED = f.read().split("\n")
except:
REQUIRED = []
setup(
name='aini_modules',
version='0.0.1',
description='Enjoy~',
author='wamawama',
author_email='wmy19970215@gmail.com',
python_requires=">=3.6.0",
url='https://github.com/WAMAWAMA/wama_modules',
packages=find_packages(exclude=("demo", "docs", "images")),
install_requires=REQUIRED,
license="MIT",
)