-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (27 loc) · 935 Bytes
/
setup.py
File metadata and controls
33 lines (27 loc) · 935 Bytes
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
# -*- coding: utf-8 -*-
# Copyright 2016 Tencent
# Author: Joe Lei <joelei@tencent.com>
from distutils.core import setup
packages, data_files = [], []
with open('README.md') as fp:
long_description = fp.read()
setup(
name='ProjectEuler-Python',
version='0.0.3',
description='project euler problem solve by python',
long_description=long_description,
author='Joe Lei',
author_email='thezero12@hotmail.com',
url='https://github.com/ifooth/ProjectEuler-Python',
packages=['euler'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: Python Software Foundation License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Mathematics',
],
)