-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (28 loc) · 1002 Bytes
/
setup.py
File metadata and controls
32 lines (28 loc) · 1002 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
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='pythonlangutil',
version='0.1',
description='Utilities for Python programmers with background in other languages.',
long_description=readme(),
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='language util',
url='https://github.com/ehsan-keshavarzian/pythonlangutil',
author='Ehsan Keshavarzian',
author_email='ehsan985@gmail.com',
license='MIT',
packages=['pythonlangutil'],
install_requires=[
],
include_package_data=True,
zip_safe=False,
test_suite='nose.collector',
tests_require=['nose'])