-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (25 loc) · 875 Bytes
/
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
from setuptools import setup
with open("README.rst", "r") as description:
long_description = description.read()
setup(
name = 'hspcore',
version = '1.3',
license='MIT',
description = 'Hansen Solubility Parameters (HSP) core functions.',
long_description_content_type='text/x-rst',
long_description=long_description,
author = 'Alejandro Gutierrez',
author_email = '[email protected]',
url = 'https://github.com/Gnpd/hspcore',
download_url = 'https://github.com/Gnpd/hspcore/archive/refs/tags/v_1.3.tar.gz',
keywords = ['HSP', 'Solubility'],
install_requires=["scipy"],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.11',
],
python_requires='>=3.6',
)