Skip to content

Commit d25b457

Browse files
authored
setup.py
0 parents  commit d25b457

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

setup.py

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
import pathlib
2+
from setuptools import find_packages, setup
3+
4+
HERE = pathlib.Path(__file__).parent
5+
6+
VERSION = '0.0.1'
7+
PACKAGE_NAME = 'Array_utilities'
8+
AUTHOR = 'Nicolás Santísima Trinidad Santín'
9+
AUTHOR_EMAIL = 'sannicolas2121@outlook.com' #Modificar con vuestros datos
10+
11+
LICENSE = 'MIT'
12+
DESCRIPTION = 'Utilidades para mejorar el trabajo con arrays'
13+
LONG_DESCRIPTION = (HERE / "README.md").read_text(encoding='utf-8')
14+
LONG_DESC_TYPE = "text/markdown"
15+
16+
setup(
17+
name=PACKAGE_NAME,
18+
version=VERSION,
19+
description=DESCRIPTION,
20+
long_description=LONG_DESCRIPTION,
21+
long_description_content_type=LONG_DESC_TYPE,
22+
author=AUTHOR,
23+
author_email=AUTHOR_EMAIL,
24+
license=LICENSE,
25+
packages=find_packages(),
26+
include_package_data=True
27+
)

0 commit comments

Comments
 (0)