Skip to content

Commit

Permalink
markdown content type specified
Browse files Browse the repository at this point in the history
  • Loading branch information
agabrown committed Dec 2, 2020
1 parent 34c1c86 commit 0a732b7
Showing 1 changed file with 41 additions and 40 deletions.
81 changes: 41 additions & 40 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
https://github.com/pypa/sampleproject
"""

from setuptools import setup, find_packages

import re
from codecs import open
from os import path
import re

from setuptools import setup, find_packages

this_folder = path.abspath(path.dirname(__file__))

Expand All @@ -28,40 +28,41 @@
codeVersion = vre.findall(m)[0]

setup(
name='PyGaia',

version=codeVersion,

description='Basic Gaia data simulation, manipulation, and analysis toolkit',
long_description=long_description + "\n\n"
+ 'Changelog\n'
+ '---------\n\n'
+ history,

url='https://github.com/agabrown/PyGaia',

author='Anthony Brown',
author_email='[email protected]',

license='LGPLv3+',

#packages=['pygaia', 'pygaia.errors', 'pygaia.astrometry', 'pygaia.photometry', 'pygaia.plot',
# 'pygaia.tests'],
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
package_data={'': ['LICENSE', 'AUTHORS.md', 'HISTORY.md', 'INSTALL.md', 'MANIFEST.in'],
'pygaia': ['data/*.txt']},
include_package_data=True,
install_requires=[ 'numpy', 'scipy' ],

classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Astronomy',
],

entry_points={},
)
name='PyGaia',

version=codeVersion,

description='Basic Gaia data simulation, manipulation, and analysis toolkit',
long_description=long_description + "\n\n"
+ '# Changelog\n'
+ '\n\n'
+ history,
long_description_content_type="text/markdown",

url='https://github.com/agabrown/PyGaia',

author='Anthony Brown',
author_email='[email protected]',

license='LGPLv3+',

# packages=['pygaia', 'pygaia.errors', 'pygaia.astrometry', 'pygaia.photometry', 'pygaia.plot',
# 'pygaia.tests'],
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
package_data={'': ['LICENSE', 'AUTHORS.md', 'HISTORY.md', 'INSTALL.md', 'MANIFEST.in'],
'pygaia': ['data/*.txt']},
include_package_data=True,
install_requires=['numpy', 'scipy'],

classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Astronomy',
],

entry_points={},
)

0 comments on commit 0a732b7

Please sign in to comment.