-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 800 Bytes
/
setup.py
File metadata and controls
21 lines (19 loc) · 800 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import find_packages, setup
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='renpass',
version='0.3.1',
author='Simon Hilpert, Cord Kaldemeyer, Martin Söthe, Stephan Günther',
author_email='simon.hilpert@uni-flensburg.de',
description='renpass',
url='https://github.com/znes/renpass',
long_description=read('README.md'),
scripts=['bin/renpass'],
packages=find_packages(),
package_data={'oemof': [
os.path.join('tools', 'default_files', '*.ini')]},
install_requires=['oemof >= git+https://github.com/oemof/oemof/releases/tag/v0.2.2#egg=oemof',
'dill',
'datapackage',
'docopt'])