-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
44 lines (41 loc) · 1.25 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#
# HOW TO UPLOAD PROJECT TO PYPI REPOSITORY
#
# $ python setup.py sdist upload -r pypi
#
from distutils.core import setup
setup(
name='pytrain',
version='0.0.12',
packages = [
'pytrain',
'pytrain.lib',
'pytrain.KNN',
'pytrain.LinearRegression',
'pytrain.LogisticRegression',
'pytrain.GaussianNaiveBayes',
'pytrain.NaiveBayes',
'pytrain.DecisionTreeID3',
'pytrain.Kmeans',
'pytrain.DBSCAN',
'pytrain.Apriori',
'pytrain.HierarchicalClustering',
'pytrain.HMM',
'pytrain.CRF',
'pytrain.NeuralNetwork',
'pytrain.SVM'
],
include_package_data=True,
package_data={'':['*.eng']},
author ='becxer',
author_email='[email protected]',
url = 'https://github.com/becxer/pytrain',
description ='Machinelearning library for python',
long_description ='Machinelearning library for python',
license='MIT',
install_requires=['numpy'],
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
]
)