-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (23 loc) · 718 Bytes
/
setup.py
File metadata and controls
27 lines (23 loc) · 718 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
"""
Setup program to install the API
"""
from setuptools import find_packages
from setuptools import setup
PR_NAME='color_rise_api'
VERSION='0.0.1'
with open("requirements.txt") as f:
content = f.readlines()
requirements = [x.strip() for x in content if "git+" not in x]
setup(name=PR_NAME,
version=VERSION,
description="Color-rise API",
license="MIT",
author="TL",
author_email="thomas.am.lacroix@gmail.com",
url="https://github.com/thomasamlacroix/color-api",
install_requires=requirements,
packages=find_packages(),
test_suite="test",
# include_package_data: to install data from MANIFEST.in
include_package_data=True,
zip_safe=False)