-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
36 lines (32 loc) · 1008 Bytes
/
setup.py
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
28
29
30
31
32
33
34
35
36
import os
from setuptools import find_packages
from setuptools import setup
requires = ["peewee", "pyyaml", "flake8"]
rst_path = os.path.join(os.path.dirname(__file__), "README.md")
description = ""
with open(rst_path) as f:
description = f.read()
setup(
name="peewee_seed",
version="0.1.8",
author="Takeru Hayasaka",
author_email="[email protected]",
url="https://github.com/takehaya/peewee_seed",
description="peewee_seed is simple data seeder using peewee.",
long_description=description,
license="MIT",
platforms="any",
packages=find_packages(exclude=("tests",)),
package_dir={"": "."},
install_requires=requires,
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Database",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
tests_require=requires,
test_suite="tests",
)