-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathsetup.py
43 lines (37 loc) · 1.02 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
from pathlib import Path
from setuptools import setup
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
VERSION = '2.1.2'
DESCRIPTION = 'Pyfiscal calculation of tax data.'
PACKAGE_NAME = 'pyfiscal'
AUTHOR = 'Tomás Santiago'
EMAIL = '[email protected]'
GITHUB_URL = 'https://github.com/roottsantiago/pyfiscal'
setup(
name = PACKAGE_NAME,
packages = [PACKAGE_NAME],
version = VERSION,
license='MIT',
description = DESCRIPTION,
long_description_content_type = "text/markdown",
long_description = long_description,
author = AUTHOR,
author_email = EMAIL,
url = GITHUB_URL,
keywords = [
'RFC',
'CURP',
'NSS',
'fiscal',
'tax',
'SAT'
],
classifiers = [
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
python_requires='>=3.9',
)