-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (38 loc) · 1.5 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
from setuptools import setup, find_packages
# su anki PyPI yazilimi markdown desteklemiyor
with open('README.rst') as f:
long_description = f.read()
with open('requirements/requirements.txt') as f:
install_requires = [line.strip() for line in f.readlines()]
setup(
name='hello',
version='0.1',
description='A hello word application',
long_description=long_description,
author='Eric Idle',
author_email='[email protected]',
url='https://github.com/berkerpeksag/hello',
# eger "pip install hello" denildiginde testlerin kurulmasini
# istemiyorsaniz find_packages()'ı cagirirken exclude=['tests']
# ekleyebilirsiniz
packages=find_packages(),
install_requires=install_requires,
# tum listeyi https://pypi.python.org/pypi?%3Aaction=list_classifiers
# adresinde bulabilirsiniz
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
# zorunlu değil
keywords='ast, codegen, PEP8',
)