-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (47 loc) · 1.67 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
###############################################################################
#
# Copyright 2014 by Shoobx, Inc.
#
###############################################################################
import os
from setuptools import setup, find_packages
def read_file(filename):
return open(os.path.join(os.path.dirname(__file__), filename)).read()
setup(
name="migrant",
version="1.5.1.dev0",
author="Shoobx, Inc.",
author_email="[email protected]",
description="Database Migration Engine",
long_description=read_file("README.rst") + "\n\n" + read_file("CHANGES.rst"),
keywords="migration version database",
license="MIT",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Natural Language :: English",
"Operating System :: OS Independent",
],
packages=find_packages("src"),
package_dir={"": "src"},
namespace_packages=[],
include_package_data=True,
zip_safe=False,
extras_require=dict(test=["coverage", "mock"],),
package_data = {'migrant': ['py.typed']},
install_requires=[
"setuptools",
],
entry_points={
"console_scripts": ["migrant = migrant.cli:main",],
"migrant": ["noop = migrant.backend:NoopBackend"],
},
)