Skip to content

Commit

Permalink
adapted setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
skjerns committed Mar 8, 2021
1 parent a23e59b commit c3ed0f1
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,25 @@
from setuptools import setup

with open("README.md", "r") as fh:
long_description = fh.read()

setup(name='pyunisens',
python_requires='>=3.6',
version='1.02',
version='1.03',
description='A python implementation of the Unisens standard',
url='http://github.com/skjerns/pyUnisens',
url='http://github.com/Unisens/pyUnisens',
author='skjerns',
license='GNU 2.0',
packages=['unisens'],
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
'numpy',
'datetime',
'pandas'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
zip_safe=False)

0 comments on commit c3ed0f1

Please sign in to comment.