-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (21 loc) · 686 Bytes
/
setup.py
File metadata and controls
27 lines (21 loc) · 686 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
26
27
from setuptools import setup, find_packages
import subprocess
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.rst') 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
)