Skip to content

Commit

Permalink
add more info
Browse files Browse the repository at this point in the history
  • Loading branch information
wtbarnes committed Sep 12, 2018
1 parent 1fcfb34 commit b7879a4
Showing 1 changed file with 22 additions and 3 deletions.
25 changes: 22 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,37 @@
import os
import setuptools
from distutils.core import setup

# create home directory
if not os.path.isdir(os.path.join(os.environ['HOME'], '.hissw')):
os.mkdir(os.path.join(os.environ['HOME'], '.hissw'))

with open('README.md', 'r') as f:
long_description=f.read()

setup(
name='hissw',
license='MIT',
version='0.1',
version='1.0',
description='Seamlessly integrate SSWIDL code into your Python workflow',
long_description=long_description,
long_description_content_type='text/markdown',
author='Will Barnes',
author_email='[email protected]',
url='https://github.com/wtbarnes/hissw',
package_data={'hissw': ['templates/*']},
packages=['hissw'],
author_email='[email protected]',
description='SSWIDL code in your Python workflow'
classifieers=[
'Development Status :: 5 - Production/Stable',
'Intendend Audience :: Scientists',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
keywords='solar sun ssw solar-physics idl sswidl solarsoft',
project_urls={
'Documentation': 'https://wtbarnes.github.io/hissw/',
'Source': 'https://github.com/wtbarnes/hissw/',
},
install_requires=['jinja2', 'scipy'],
python_requires='>=3'
)

0 comments on commit b7879a4

Please sign in to comment.