-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (23 loc) · 694 Bytes
/
setup.py
File metadata and controls
27 lines (23 loc) · 694 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
#!/usr/bin/env python
from setuptools import setup, find_packages
reqs = []
with open('requirements.txt') as f:
for l in f.read().splitlines():
if not l.strip().startswith('#'):
reqs.append(l.strip())
# Keyword order: https://packaging.python.org/distributing
setup(
# These 9 fields are inserted into PKG-INFO. Unspecified keys are set to
# UNKNOWN values.
name='flib',
version='0.1.0',
description="Function Lab Python Library",
# long_description="",
url='https://github.com/FunctionLab/function',
author='Function Lab',
# author_email='',
# license='',
# platform=''
packages=find_packages(),
install_requires=reqs,
)