-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (19 loc) · 739 Bytes
/
setup.py
File metadata and controls
22 lines (19 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import os
from setuptools import setup
from configparser import ConfigParser
# Read in the requirements.txt file
with open('./requirements.txt') as f:
requirements = f.read().splitlines()
config = ConfigParser()
config.read(os.path.abspath(os.path.join(os.path.dirname(__file__), './python-assembly-line.cfg')))
setup(
name='python-assembly-line',
version=config['DEFAULT']['version'],
install_requires=requirements,
author='Luis Visintini',
author_email='lvisintini@gmail.com',
packages=['assembly_line', ],
url='https://github.com/lvisintini/python-assembly-line',
license='The MIT License (MIT)',
description='A python toolkit to define a assembly line of task and run "things" through it.',
)