-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
61 lines (53 loc) · 2.06 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
59
60
61
# -*- coding: utf-8 -*-
"""
balerin setup module.
"""
import io
import re
from setuptools import find_namespace_packages, setup
with io.open('README.md', 'rt', encoding='utf8') as readme_file:
README = readme_file.read()
with io.open('src/balerin/__init__.py', 'rt', encoding='utf8') as version_file:
VERSION = re.search(r"__version__ = '(.*?)'", version_file.read()).group(1)
PACKAGES = []
setup(
name='balerin',
version=VERSION,
url='https://github.com/mononobi/balerin',
project_urls={
# 'Documentation': '',
'Code': 'https://github.com/mononobi/balerin',
'Issue tracker': 'https://github.com/mononobi/balerin/issues',
},
license='BSD-3-Clause',
author='mono',
author_email='mononobi@gmail.com',
maintainer='mono',
maintainer_email='mononobi@gmail.com',
description='A python package startup orchestrator. it can handle loading all packages '
'of an application at startup time respecting package dependencies.',
long_description=README,
long_description_content_type='text/markdown',
keywords=('python balerin package-manager packaging startup auto-import'
'startup-import syntax-error package-loader'),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development :: Libraries :: Python Modules',
],
packages=find_namespace_packages('src', exclude=('tests', 'tests.*')),
package_dir={'': 'src'},
package_data={'': ['*']},
include_package_data=True,
python_requires='>=3.6',
install_requires=PACKAGES
)