-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·25 lines (22 loc) · 827 Bytes
/
setup.py
File metadata and controls
executable file
·25 lines (22 loc) · 827 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
def parse_requirements(filename):
with open(filename, 'r') as f:
return [line.strip() for line in f if line.strip() and not line.startswith('#')]
setup(name="fPDK",
version="0.1.8",
description="an API for proofing fonts",
author="Connor Davenport",
author_email="info@connordavenport.com",
maintainer="Connor Davenport",
maintainer_email="info@connordavenport.com",
url="https://github.com/connordavenport/fPDK",
license="All rights reserved",
package_dir={"":"Lib"},
packages=find_packages("Lib"),
package_data={
'fPDK': ['fonts/*.otf'],
},
include_package_data=True,
install_requires=parse_requirements('requirements.txt'),
zip_safe=False)