-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
65 lines (61 loc) · 1.99 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
# Module imports
from setuptools import setup
# Arguments
git_name = "jutils"
pypi_name = "jutl"
version = "0.5.3" # update __init__.py
python_version = ">=3.10"
# Long description from README.md
with open("README.md", "r") as fh:
long_description = fh.read()
# jutils package data
jutils_package_data = [
'averages/*',
'calculators/*',
'converters/*',
'cryptography/*',
'datastructures/*',
'formatting/*',
'language/*',
'logic/*',
'pipelining/*',
'sorters/*',
'timers/*',
'utilities/*'
]
# Run setup function
setup(
name=pypi_name,
version=version,
description='A Python package of useful tools and utilities.',
license='MIT',
long_description=long_description,
long_description_content_type='text/markdown',
author='Jordan Welsman',
author_email='[email protected]',
url='https://pypi.org/project/'+pypi_name+'/',
download_url='https://github.com/JordanWelsman/jutils/tags',
package_data={f'{pypi_name}': jutils_package_data},
python_requires=python_version,
# jutils package information
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'License :: OSI Approved :: MIT License',
'Topic :: Education',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Security',
'Topic :: Security :: Cryptography',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
],
keywords='python, averages, calculators, converters, cryptography, formatting, language, logic, pipelining, sorters, timers, utilities'
)