-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
22 lines (21 loc) · 846 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from distutils.core import setup
setup(name='embedder',
version='0.1',
description='Embed categorical variables via neural networks',
author='Dat Nguyen',
author_email='[email protected]',
url='https://github.com/dkn22/embedder',
packages=['embedder',],
license='BSD',
classifiers=[
'Environment :: MacOS X',
'Environment :: Win32 (MS Windows)',
'Environment :: X11 Applications',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules']
)