-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
executable file
·53 lines (44 loc) · 1.52 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import absolute_import, print_function, unicode_literals
import os
from setuptools import find_packages, setup
from alchemy_mock import __author__, __description__, __version__
def read(fname):
return (
open(os.path.join(os.path.dirname(__file__), fname), "rb")
.read()
.decode("utf-8")
)
authors = read("AUTHORS.rst")
history = read("HISTORY.rst").replace(".. :changelog:", "")
licence = read("LICENSE.rst")
readme = read("README.rst")
requirements = read("requirements.txt").splitlines() + ["setuptools"]
test_requirements = (
read("requirements.txt").splitlines()
+ read("requirements-dev.txt").splitlines()[1:]
)
setup(
name="alchemy-mock",
version=__version__,
author=__author__,
description=__description__,
long_description="\n\n".join([readme, history, authors, licence]),
url="https://github.com/miki725/alchemy-mock",
license="MIT",
packages=find_packages(exclude=["test", "test.*"]),
install_requires=requirements,
tests_require=test_requirements,
keywords=" ".join(["sqlalchemy", "mock", "testing"]),
classifiers=[
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Development Status :: 2 - Pre-Alpha",
],
)