forked from fmetivier/OpenPattern
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (20 loc) · 638 Bytes
/
setup.py
File metadata and controls
26 lines (20 loc) · 638 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
# -*- coding: utf-8 -*-
# Learn more: https://github.com/francoismetivier/setup.py
from setuptools import setup, find_packages
with open("README.md") as f:
readme = f.read()
with open("LICENSE") as f:
license = f.read()
setup(
name="OpenPattern",
version="0.2.0",
description="Pattern drafting libraries",
long_description=readme,
author="François Métivier",
author_email="metivier.laofu@gmail.com",
url="http://github.com/fmetivier/OpenPattern",
license=license,
packages=find_packages(exclude=("tests", "docs")),
include_package_data=True,
package_data={"": ["data/*.db"]},
)