File tree Expand file tree Collapse file tree 1 file changed +27
-0
lines changed
Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change 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+ )
You can’t perform that action at this time.
0 commit comments