forked from izberg-marketplace/izberg-api-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (32 loc) · 1.2 KB
/
setup.py
File metadata and controls
38 lines (32 loc) · 1.2 KB
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
37
38
#!/usr/bin/env python
from setuptools import setup, find_packages
version = __import__('icebergsdk').__version__
def load_requirements(*filepaths):
requirements = []
for filepath in filepaths:
with open(filepath, 'r') as requirements_file:
requirements += [
requirement.split(" #")[0]
for requirement in requirements_file.read().splitlines()
if not requirement.startswith('#')
]
return requirements
setup(
name='icebergsdk',
version=version,
description='IZBERG Marketplace API Client for Python',
author='IZBERG',
author_email='florian@izberg-marketplace.com',
url='https://github.com/izberg-marketplace/izberg-api-python',
packages=find_packages(),
install_requires=load_requirements("requirements/base.txt"),
keywords=['izberg', 'marketplace', 'saas', 'api', 'python'],
classifiers=[
"Development Status :: 2 - Pre-Alpha",
'Intended Audience :: Developers',
"License :: OSI Approved :: MIT License",
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)