-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (26 loc) · 981 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
import os
from setuptools import setup, find_packages
dependencies = ["peewee", "pytz"]
here = os.path.abspath(os.path.dirname(__file__))
# Get the long description from the README file
with open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name="peewee-model-factory",
version="0.1.1",
packages=find_packages(),
install_requires=dependencies,
author="Nikolay Gorshkov",
author_email="nogamemorebrain@gmail.com",
description="A library to create peewee model instances for testing.",
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/kalombos/peewee-model-factory",
keywords="python testing fixture generator peewee model factory peewee fixtures",
license="BSD",
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3'
]
)