forked from mmaelicke/felis_python2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (20 loc) · 664 Bytes
/
setup.py
File metadata and controls
25 lines (20 loc) · 664 Bytes
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
from setuptools import setup, find_packages
with open('VERSION.txt') as fs:
VERSION = fs.read().strip()
with open('requirements.txt') as fs:
REQUIREMENTS = fs.read.strip().split('\n')
def readme():
with open('Readme.md') as fs:
return fs.read()
setup(name='felis_python2',
version=VERSION,
long_description=readme(),
description='Lecture notes for Python 2 at University of Freiburg.',
author='Mirko Mälicke',
author_email='mirko.maelicke@felis.uni-freiburg.de',
license='MIT',
packages=find_packages(),
install_requires=REQUIREMENTS,
include_package_data=True,
zip_safe=False
)