forked from Yosser97/fantastic-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (33 loc) · 1.1 KB
/
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
from setuptools import setup, find_packages
try:
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, "requirements.txt")) as f:
required = [
line.strip("\n") for line in f if line.strip("\n") and not line.startswith("#")
]
except IOError:
required = []
README = ""
setup(
name="fantastic-api",
packages=find_packages(),
version="0.0.1",
license="GPLv3+",
description="fantastic-api is a test project",
long_description_content_type="text/markdown",
author="Amine Ben Asker",
author_email="amine@eyacom.com",
url="https://github.com/eyacom/fanstastic-api",
install_requires=required,
classifiers=[
"Development Status :: 1 - Development",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
)