-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (44 loc) · 1.2 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
# See license.txt for license details.
# Copyright (c) 2016 onwards Chris Withers
import os
from setuptools import setup, find_packages
base_dir = os.path.dirname(__file__)
optionals = ['sqlalchemy']
setup(
name='chide',
version='3.0.0',
author='Chris Withers',
author_email='chris@withers.org',
license='MIT',
description="Quickly create sample objects from data.",
long_description=open(os.path.join(base_dir, 'README.rst')).read(),
url='https://github.com/cjw296/chide',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
packages=find_packages(exclude=['tests']),
zip_safe=False,
include_package_data=True,
python_requires=">=3.11",
extras_require=dict(
test=[
'mypy',
'pytest',
'pytest-cov',
'sybil',
'testfixtures',
] + optionals,
docs=[
'furo',
'sphinx',
] + optionals,
build=[
'setuptools-git',
'twine',
'wheel'
]
),
)