-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
77 lines (65 loc) · 2.84 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/usr/bin/env python3
import re
import sys
from setuptools import find_packages, setup
print("reading meta data")
with open("src/iterfun/__init__.py", encoding='utf-8') as file_handler:
lines = file_handler.read()
version = re.search(r'__version__ = "(.*?)"', lines).group(1)
package_name = re.search(r'package_name = "(.*?)"', lines).group(1)
python_major = int(re.search(r'python_major = "(.*?)"', lines).group(1))
python_minor = int(re.search(r'python_minor = "(.*?)"', lines).group(1))
try:
assert sys.version_info >= (int(python_major), int(python_minor))
except AssertionError:
raise RuntimeError("\033[91m%s requires Python %s.%s+ (You have Python %s)\033[0m" % (package_name, python_major, python_minor, sys.version))
print("reading dependency file")
with open("requirements/release.txt", mode='r', encoding='utf-8') as requirements:
packages = requirements.read().splitlines()
with open("requirements/dev.txt", mode='r', encoding='utf-8') as requirements:
dev_packages = requirements.read().splitlines()
print("reading readme file")
with open("README.md", mode='r', encoding='utf-8') as readme:
long_description = readme.read()
print("running %s's setup routine" % package_name)
setup(
author='StefanGreve',
author_email="[email protected]",
name=package_name,
version=version,
description="Implements an eager iterator class reminiscent of Elixir's Enum structure.",
long_description=long_description,
long_description_content_type='text/markdown',
license='MIT',
url="https://github.com/StefanGreve/iterfun",
project_urls={
'Documentation': "https://github.com/StefanGreve/iterfun/blob/master/README.md",
'Source Code': "https://github.com/StefanGreve/iterfun",
'Bug Reports': "https://github.com/StefanGreve/iterfun/issues",
'Changelog': "https://github.com/StefanGreve/iterfun/blob/master/CHANGELOG.md"
},
python_requires=">=%d.%d" % (python_major, python_minor),
install_requires=packages,
extra_requires={
'dev': dev_packages[1:],
'test': ['pytest']
},
include_package_data=True,
package_dir={'': 'src'},
packages=find_packages(where='src'),
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: Implementation :: CPython',
'Operating System :: OS Independent',
'Topic :: Utilities',
],
keywords="utils, functional programming, functools, itertools, extension",
)