Skip to content

Commit

Permalink
Improved package metadata.
Browse files Browse the repository at this point in the history
  • Loading branch information
hpparvi committed Dec 2, 2013
1 parent 7ad5657 commit 68213ed
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
*~
*.pyc
build
build
dist
MANIFEST
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include README.rst LICENSE
19 changes: 17 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,27 @@
from numpy.distutils.misc_util import Configuration
import distutils.sysconfig as ds

with open('README.rst') as file:
long_description = file.read()

setup(name='PyDE',
version='1.0',
version='1.0.1',
description='Differential Evolution in Python',
long_description=long_description,
author='Hannu Parviainen',
author_email='[email protected]',
url='https://github.com/hpparvi/PyDE',
package_dir={'pyde':'src'},
packages=['pyde']
packages=['pyde'],
install_requires=["numpy"],
license='GPLv2',
classifiers=[
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
"Programming Language :: Python"
]
)

0 comments on commit 68213ed

Please sign in to comment.