-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (27 loc) · 1.03 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
from setuptools import setup, find_packages
from codecs import open # To use a consistent encoding
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'DESCRIPTION.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='ProjectCodeforces',
version='0.1.0',
description='custom build for sublime to take testcases from codeforces.com and check',
long_description=long_description,
# The project's main homepage.
url='https://github.com/vasanthaganeshk/sublime-plugin-for-codeforces',
author='Vasantha Ganesh k',
author_email='[email protected]',
license='GNU-GPL-V3.0',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: HTMLParsing Codeforces :: Build Tools',
'License :: OSI Approved :: GNU-GPL-V3 License',
'Programming Language :: Python :: 2.7',
],
keywords='sublime plugin for codeforces',
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
#packages=find_packages(ProjectCodeforces),
)