-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
58 lines (52 loc) · 1.73 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
54
55
56
57
58
"""Setup for the birch package."""
# !/usr/bin/env python
# -*- coding: utf-8 -*-
import setuptools
import versioneer
INSTALL_REQUIRES = ['strct>=0.0.26']
TEST_REQUIRES = [
# testing and coverage
'pytest', 'coverage', 'pytest-cov',
# unmandatory dependencies of the package itself
'pyyaml',
# to be able to run `python setup.py checkdocs`
'collective.checkdocs', 'pygments',
]
with open('README.rst', encoding="utf-8") as f:
README = f.read()
setuptools.setup(
author="Shay Palachy",
author_email="[email protected]",
name='birch',
license="MIT",
description='Simple hierarchical configuration for Python packages',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
long_description=README,
url='https://github.com/shaypal5/birch',
packages=setuptools.find_packages(),
include_package_data=True,
python_requires=">=3.6",
install_requires=[
INSTALL_REQUIRES
],
extras_require={
'test': TEST_REQUIRES + INSTALL_REQUIRES,
},
classifiers=[
# Trove classifiers
# (https://pypi.python.org/pypi?%3Aaction=list_classifiers)
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'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',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)