Skip to content

Commit

Permalink
change setup (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
chompar4 authored Oct 18, 2020
1 parent b42626e commit 41c37bc
Showing 1 changed file with 15 additions and 10 deletions.
25 changes: 15 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
import setuptools
from setuptools import find_packages, setup

setuptools.setup(
name = 'geomag',
version = '7.0',
description = 'magnetic field strength values and declination calculator',
author = 'Sam Thompson',
author_email = '[email protected]',
url = 'https://github.com/chompar4/geomag',
download_url = 'https://github.com/chompar4/geomag',
)
AUTHOR = "Sam Thompson"
EMAIL = "[email protected]"

requires = []
setup(
name="geomag",
version="8.0",
author=AUTHOR,
author_email=EMAIL,
description="magnetic field strength values and declination calculator",
install_requires=requires,
packages=find_packages(),
include_package_data=True,
)

0 comments on commit 41c37bc

Please sign in to comment.