-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 1014 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 1014 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
from setuptools import setup
def read(fname):
with open(fname, 'r') as f:
return f.read()
setup(name = 'python-numa',
description = 'Python libnuma ctypes wrapper',
long_description = read('README.md'),
py_modules = ['numa'],
version = '0.6',
author = 'Alex Revetchi',
author_email = 'alex.revetchi@gmail.com',
url = 'https://github.com/zakalibit/python-numa',
license = 'License :: OSI Approved :: MIT License',
platforms = 'Linux',
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python'
],
)