Skip to content

Commit

Permalink
packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
dkaslovsky committed Oct 16, 2018
1 parent 77c0ee2 commit dcc009b
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 12 deletions.
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
32 changes: 20 additions & 12 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,27 +1,35 @@
from distutils.core import setup
from setuptools import setup

from os import path
from io import open


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

with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
with open('README.md') as f:
long_description = f.read()

with open(path.join(this_directory, 'requirements.txt'), encoding='utf-8') as f:
with open('requirements.txt') as f:
requirements = f.read().splitlines()


setup(
name='coupled_biased_random_walks',
version='0.1',
packages=['coupled_biased_random_walks'],
license='MIT',
version='1.0.0',
author='Daniel Kaslovsky',
author_email='[email protected]',
license='MIT',
description='Outlier detection for categorical data',
long_description=long_description,
long_description_content_type="text/markdown",
packages=['coupled_biased_random_walks'],
install_requires=requirements,
url='https://github.com/dkaslovsky/Coupled-Biased-Random-Walks',
keywords=['anomaly detection, outlier detection', 'categorical data', 'random walk'],
install_requires=requirements
classifiers=[
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
]
)

0 comments on commit dcc009b

Please sign in to comment.