Skip to content

Commit

Permalink
changed setup file
Browse files Browse the repository at this point in the history
  • Loading branch information
joschout committed Oct 18, 2019
1 parent 46e85f3 commit b8d5e3f
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 5 deletions.
15 changes: 10 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
from setuptools import setup

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

long_description = fh.read()

setup(
name='SubmodularMaximization',
version='',
name='Unconstrained Submodular Maximization',
version='0.0.1',
packages=[''],
package_dir={'': 'src'},
url='',
license='',
package_dir={'': 'usm'},
url='https://github.com/joschout/SubmodularMaximization',
license='Apache 2.0',
author='Jonas Schouterden',
author_email='',
description='Unconstrained submodular maximization optimization algorithms',
long_description=long_description,
install_requires=['numpy']
)
Empty file removed src/__init__.py
Empty file.
1 change: 1 addition & 0 deletions usm/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
name = "usm"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit b8d5e3f

Please sign in to comment.