Skip to content
This repository was archived by the owner on Jun 11, 2024. It is now read-only.

Commit 832e123

Browse files
committed
remove manifest file and use setuptools-git
1 parent aa8c426 commit 832e123

2 files changed

Lines changed: 5 additions & 6 deletions

File tree

MANIFEST.in

Lines changed: 0 additions & 2 deletions
This file was deleted.

setup.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
with open(path.join(here, 'atomx', 'version.py')) as f:
1111
exec(f.read()) # defines VERSION and API_VERSION
1212

13-
from distutils.core import setup
1413

1514
requires = [
1615
'requests',
@@ -29,12 +28,13 @@
2928
long_description=README + '\n\n' + CHANGES,
3029

3130
packages=find_packages(),
31+
exclude_package_data={'': ['.gitignore']},
3232
zip_safe=True,
33-
url='https://github.com/atomx/atomx-api-python',
34-
license='ISC',
33+
3534
author='Spot Media Solutions Sdn. Bhd.',
3635
author_email='daniel@atomx.com',
37-
36+
url='https://github.com/atomx/atomx-api-python',
37+
license='ISC',
3838
classifiers=[
3939
'Development Status :: 4 - Beta',
4040
'Intended Audience :: Developers',
@@ -46,6 +46,7 @@
4646
],
4747
keywords='atomx rest api',
4848

49+
setup_requires=['setuptools_git'],
4950
install_requires=requires,
5051
extra_require=extra_require,
5152
)

0 commit comments

Comments
 (0)