-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (35 loc) · 1.31 KB
/
setup.py
File metadata and controls
38 lines (35 loc) · 1.31 KB
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
from os import environ as envvars
from pathlib import Path
from setuptools import setup, find_packages
setup(
name='actionpack',
description='a lib for describing Actions and how they should be performed',
long_description=Path(__file__).absolute().parent.joinpath('README.md').read_text(),
long_description_content_type='text/markdown',
setup_requires=[
'setuptools_scm==5.0.1'
],
use_scm_version={'local_scheme': 'no-local-version'} if envvars.get('LOCAL_VERSION_SCHEME') else True,
packages=find_packages(exclude=['tests']),
author='Emmanuel I. Obi',
license='MIT',
maintainer='Emmanuel I. Obi',
maintainer_email='withtwoemms@gmail.com',
url='https://github.com/withtwoemms/actionpack',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
install_requires=[
'OSlash==0.5.1',
'validators==0.18.2',
]
)