-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
29 lines (27 loc) · 934 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
23
24
25
26
27
28
29
try:
import setuptools
from setuptools import setup, find_packages
except ImportError:
print("Please install setuptools.")
import os
long_description = 'gdp is generating distributed representation code sets written by pytorch.'
if os.path.exists('README.MD'):
long_description = open('README.MD').read()
setup(
name = 'gdp',
version = '0.1',
description = 'gdp is generating distributed representation code sets written by pytorch.',
long_description = long_description,
license = 'MIT',
author = 'Shohei Ogawa',
author_email = '[email protected]',
url = 'https://github.com/RottenFruits/gdp',
keywords = 'distributed-representations',
packages = find_packages(),
install_requires = ['numpy', 'tqdm'],
classifiers = [
'Programming Language :: Python :: 3.6',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License'
]
)