-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 692 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (21 loc) · 692 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import find_packages
from setuptools import setup
import os
thelibFolder = os.path.dirname(os.path.realpath(__file__))
requirementPath = thelibFolder + '/requirements.txt'
install_requires = []
if os.path.isfile(requirementPath):
with open(requirementPath) as f:
install_requires = f.read().splitlines()
setup(
name='MPK API',
version='1.0.0',
description='API for MPK LODZ',
author='Rostyslav Mosorov',
author_email='rmosorov@icloud.com',
license='MIT License',
url='https://github.com/rostekus/MPK-API',
install_requires=install_requires,
packages=find_packages(where='src', exclude='tests*'),
package_dir={'': 'src'}
)